---------------------------------------------------------------------------
Error Traceback (most recent call last)
<ipython-input-14-fe3e91074aa3> in <module>()
1 # saving the trained model
----> 2 ssd.save('OrchardDetector9')
C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcpro_clone\lib\site-packages\arcgis\learn\models\_ssd.py in save(self, name_or_path)
350 with open(saved_path.parent / _EMD_TEMPLATE['InferenceFunction'], 'w') as f:
351 f.write(code)
--> 352 self._create_zip(zip_name, str(saved_path.parent))
353 print('Created model files at {spp}'.format(spp=saved_path.parent))
354
C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcpro_clone\lib\site-packages\arcgis\learn\models\_ssd.py in _create_zip(self, zipname, path)
284 import shutil
285 zip_file = shutil.make_archive(zipname, 'zip', path)
--> 286 shutil.move(zip_file, path)
287
288 def _create_emd(self, path):
C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcpro_clone\lib\shutil.py in move(src, dst, copy_function)
540 real_dst = os.path.join(dst, _basename(src))
541 if os.path.exists(real_dst):
--> 542 raise Error("Destination path '%s' already exists" % real_dst)
543 try:
544 os.rename(src, real_dst)
Error: Destination path 'E:\ShannonE\GDA_Project_SE\Historical_Orthomosaic\Attempt8\models\OrchardDetector9\OrchardDetector9.zip' already exists